home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / Source / MultiSession 1.04 Source / Core 27⁄June⁄1993 / CModalDialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-09  |  409 b   |  20 lines  |  [TEXT/KAHL]

  1. /* CModalDialog.h */
  2.  
  3. #pragma once
  4.  
  5. #include "CWindow.h"
  6.  
  7. #define DoAllowMenus (True)
  8. #define DontAllowMenus (False)
  9.  
  10. struct    CModalDialog    :    CWindow
  11.     {
  12.         MyBoolean*    GoAwayLocation;
  13.         EXECUTE(MyBoolean Initialized;)
  14.  
  15.         /* */        ~CModalDialog();
  16.         void        IModalDialog(LongPoint Start, LongPoint Extent, MyBoolean AllowMenus);
  17.         void        MakeMyGrafPtr(LongPoint Start, LongPoint Extent);
  18.         void        DoEventLoop(void);
  19.     };
  20.